| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | describe('Abe', function() { |
||
| 23 | it('Create a slug template post', function(client) { |
||
| 24 | client |
||
| 25 | .useXpath() |
||
| 26 | .url('http://localhost:3003/abe/editor') |
||
| 27 | .click('//*[@id="selectTemplate"]/option[11]') |
||
| 28 | .pause(1000) |
||
| 29 | .elements('xpath',"//div[@data-precontrib-templates='slug']", function (result) { |
||
| 30 | client.assert.equal(result.value.length, 2); |
||
| 31 | }); |
||
| 32 | }); |
||
| 33 | }); |
||
| 34 | }); |